home *** CD-ROM | disk | FTP | other *** search
/ Tech Arsenal 1 / Tech Arsenal (Arsenal Computer).ISO / tek-01 / wavepool.zip / PHOTON.WPL < prev    next >
Text File  |  1992-04-08  |  379b  |  23 lines

  1.  
  2. #
  3. #       PHOTON Wavepool program
  4. #
  5. #       Copyright 1992, Data Assist, Inc.
  6. #
  7.  
  8. BEGIN {
  9.     screate("photon.sou")
  10.  
  11.     for (x=4000; x>=100; x=x-150) {
  12.         print "x=", x;
  13.         sinwave(x, 110); quiet(5);
  14.         sinwave(x/2+37, 110); quiet(5);
  15.         sinwave(x/3+37, 110); quiet(5);
  16.     }
  17.     sclose(0);
  18.     sndvoc("photon.sou", "photon.voc");
  19. }
  20.  
  21.  
  22.  
  23.